I think, that describe errors like the first one is quite useless, so
such errors won't be described.
Here comes fatal errors, these will always stop the compilation
(excluding FTL(007)):
FTL(002): Not enough memory
FTL(003): Requied arguments missing
You probably used bad arguments with dc,
try dc ?, or see cli.
FTL(004): Unable to open source file
FTL(005): Unable to read file
Given MODULE or another file can't be read correctly.
FTL(006): Unable to open file
Given MODULE or another file not found in given directories.
FTL(007): Unknown error, contact author
FTL(008): Assembler error occured, please contact the author
These two errors appears only where does compiler wrong things, it is
usualy caused by incompletion of PowerD. Only advice I can give You is
to locate the cause and rewrite it in another way, or contact
me.
FTL(009): Linker error occured, please contact the author
This error appear when You use external functions which aren't defined
in a MODULE, or You forgot to include this MODULE.
ERR(010): Syntax error
This error usualy appears, when You forgot a comma ',' or You added one
where it shouldn't be used. This error is signed as fatal, because it
usualy made wrong things.
ERR(082): CASE, DEFAULT or ENDSELECT expected
This appear if You forgot to add string containing assembler source
after '=' in RPROC definition.
ERR(083): Useless SELECT structure
ERR(084): STRING/PTR can be copyed only with ':='
ERR(085): Assembler source code string expected after '='
ERR(086): IF expected after RAISE value
ERR(087): Illegal type conversion
ERR(088): This operator can't be used with floats
ERR(089): This operator can't be used with constants
ERR(090): This operator can't be used in this case
ERR(091): Swapping different types
ERR(092): Only CONSTant possible
ERR(093): CONSTant requied as argument
ERR(094): Variable declared 2 or more times
ERR(095): Macro is too large (max. is 16384)
Macros uses in PowerD predefined buffer, which limits macro size to
16kB, try to short down given macro, or use more shorter macros.
ERR(096): STRING type must have a size
ERR(097): Unknown \x extension
ERR(098): Too deep pointer
ERR(099): Type expected
ERR(100): String address can be stored only in 32bit field
ERR(101): Raise() function not found
This error appear only if You call a function, which can raise an
exception via RAISE keyword and Raise() function not found. Raise()
function is located in powerd.lib. You probably used OPT NOSTD and
then RAISE.
ERR(102): Too deep macro
This may occur when You use macro in macro in eighth or higher macro level.
Macros can contain other macros maximally into 8 levels.
WRN(103): Unused variables in
WRN(104): Unused procedures
WRN(104): More return values than in procedure definition
This warn appears when You return more return values then in procedure
definition like here:
PROC test()(LONG,LONG)
ENDPROC 10,20,30
This is only a warning, because if the undefined value is a long or
a pointer, no problems will appear, because those values will be taken
as longs!!! If You return this way floats or doubles, they will be
converted to long!!!